home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / jDictionary 1.8 / jdictionary-1_8-win.exe / src-1_8 / info / jdictionary / NewJDictionaryVersionChecker.java < prev    next >
Encoding:
Java Source  |  2002-08-08  |  3.1 KB  |  95 lines

  1. /*
  2.  * 01/09/2002 - 20:43:57
  3.  *
  4.  * NewJDictionaryVersionChecker.java -
  5.  * Copyright (C) 2002 Csaba KertΘsz
  6.  * kcsaba@jdictionary.info
  7.  * www.jdictionary.info
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU Lesser General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU Lesser General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU Lesser General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  */
  23.  
  24. package info.jdictionary;
  25.  
  26. import java.net.URL;
  27. import java.util.Vector;
  28. import java.io.DataInputStream;
  29. import info.jdictionary.events.NewJDictionaryVersionEvent;
  30. import info.jdictionary.listeners.NewJDictionaryVersionListener;
  31.  
  32. public class NewJDictionaryVersionChecker extends Thread{
  33.  
  34.     private URL url;
  35.     private float latestVersion;
  36.     private boolean success = false;
  37.     private boolean isNewerAvailable = false;
  38.     private Vector newJDictionaryVersionListeners = new Vector();
  39.  
  40.  
  41.     public NewJDictionaryVersionChecker() {
  42.         try {
  43.             this.url = new URL(JDictionary.getString("InfoServerURL") + "/" + JDictionary.getString("LatestFile"));
  44.         }
  45.         catch(java.net.MalformedURLException e) {this.url = null;}
  46.     }
  47.  
  48.     public void run() {
  49.         latestVersion = getLatestVersion();
  50.         if(latestVersion > JDictionary.getJDictionaryVersion()) {
  51.             isNewerAvailable = true;
  52.             notifyNewJDictionaryVersionListeners(latestVersion);
  53.         }
  54.     }
  55.  
  56.  
  57.     public float getLatestVersion() {
  58.         if(success)
  59.             return latestVersion;
  60.         if(url == null)
  61.             return 0;
  62.         byte[] b = new byte[32];
  63.         try {
  64.             DataInputStream dis = new DataInputStream(url.openStream());
  65.             dis.read(b);
  66.         } catch (java.lang.Exception e) {
  67.             return 0;
  68.         }
  69.         Float f = new Float(new String(b));
  70.         success = true;
  71.         return f.floatValue();
  72.     }
  73.  
  74.  
  75.     void notifyNewJDictionaryVersionListeners(float latestVersion) {
  76.         Vector tmpList;
  77.         NewJDictionaryVersionEvent event = new NewJDictionaryVersionEvent(this, latestVersion);
  78.         synchronized(this) {
  79.             tmpList = (Vector)newJDictionaryVersionListeners.clone();
  80.         }
  81.         for(int i = 0; i < tmpList.size(); i++) {
  82.             ((NewJDictionaryVersionListener)tmpList.elementAt(i)).newJDictionaryVersionAvailable(event);
  83.         }
  84.     }
  85.  
  86.  
  87.     public synchronized void addNewJDictionaryVersionListener(NewJDictionaryVersionListener listener) {
  88.         newJDictionaryVersionListeners.addElement(listener);
  89.     }
  90.  
  91.  
  92.     public synchronized void removeNewJDictionaryVersionListener(NewJDictionaryVersionListener listener) {
  93.         newJDictionaryVersionListeners.removeElement(listener);
  94.     }
  95. }